From a479c736a6be42799ba36b80623e90f00742fac7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 13:28:54 -0500 Subject: [PATCH] ci: bump actions/upload-artifact from 1 to 4 (#279) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 1 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v1...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci-fuzz.yml | 2 +- .github/workflows/cmake.yml | 4 ++-- .github/workflows/make.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-fuzz.yml b/.github/workflows/ci-fuzz.yml index afd79be..eb368c0 100644 --- a/.github/workflows/ci-fuzz.yml +++ b/.github/workflows/ci-fuzz.yml @@ -16,7 +16,7 @@ jobs: fuzz-seconds: 600 dry-run: false - name: Upload Crash - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 if: failure() with: name: artifacts diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 2881440..9a42d79 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -27,7 +27,7 @@ jobs: run: ctest --test-dir build -V - name: Upload shared lib if: matrix.shared == 'ON' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.os }} path: | @@ -58,7 +58,7 @@ jobs: run: ctest --test-dir build -V - name: Upload shared lib if: matrix.shared == 'ON' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: windows-mingw64 path: build/libutf8proc.* diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index acc975d..d46b2f2 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -35,7 +35,7 @@ jobs: - name: Make lib run: make - name: Upload shared lib - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: make-${{ matrix.os }} path: libutf8proc.* -- 2.30.2